home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / dviware / ivd2dvi / makefile < prev    next >
Makefile  |  1990-10-01  |  406b  |  23 lines

  1. # Set this variable to the ultimate location of the software.
  2. BINAREA=/usr/local/bin
  3.  
  4. CFLAGS = -O
  5.  
  6. OBJS = ivd2dvi.o auxiliary.o io.o
  7. SRCS = ivd2dvi.c auxiliary.c io.c
  8. INCLUDES = global.h commands.h
  9.  
  10. all: ivd2dvi
  11.  
  12. ivd2dvi: ${OBJS}
  13.     cc ${CFLAGS} -o ivd2dvi ${OBJS}
  14.  
  15. ${OBJS}: ${INCLUDES}
  16.  
  17. install: all
  18.     install -s -m 755 ivd2dvi ${BINAREA}
  19.  
  20. bugs:   ${SRCS} ${INCLUDES}
  21.     rm -f bugs
  22.     lint -hbxac ${SRCS} > bugs
  23.